*DefineCurve()
Begins a curve definition block.
Syntax
*DefineCurve(crv_def_name, [arg_1, arg_2,..., arg_n])
Application
HyperGraph
Arguments
- crv_def_name
- The name of the curve definition.
- arg_1, arg_2, ..., arg_n (Optional)
- User-defined
Example
*DefineCurve(crvdef_swa, filename)
    *BeginVector(X, File)
        *Filename(filename)
        *Datatype("Time")
    *EndVector()
    *BeginVector(Y, File)
        *Filename(filename)
        *Datatype("User Defined")
        *Request("REQ/60000600 Steering Angle and 
                 Torque (deg ft-lb)")
        *Component("X")
        *AxisIndex(3)
    *EndVector()
*EndDefine()Comments
The *DefineCurve() statement requires an ending *EndDefine() statement.
All arguments after the first argument are user-defined.